/*弹框部分*/
.jyz-frame {
    position: fixed;
    top: 200px;
    left: 0;
    width: 100%;
    z-index: 8000;
}
.jyz-frame .jyz-center {
    width: 450px;
    margin: 0 auto;
    border: 1px solid #dcdcdc;
    background-color: #fff;
    position: relative;
}
.jyz-frame .jyz-center .jyz-title {
    width: 100%;
    height: 30px;
    line-height: 30px;
    background: #f3f3f3;
    border-bottom: 1px solid #cdcdcd;
    font-size: 14px;
    font-weight: 600;
}
.jyz-frame .jyz-center .jyz-title .jyz-title-left {
    float: left;
    margin-left: 10px;
}
.jyz-frame .jyz-center .jyz-title .jyz-close {
    position: absolute;
    top: 8px;
    right: 15px;
    cursor: pointer;
    background: url(../../images/icon.png) no-repeat -120px -145px;
    width: 15px;
    height: 15px;
    display: inline-block;
}
.jyz-frame .jyz-center .jyz-fill {
    width: 100%;
    padding-top:28px;
    padding-bottom: 30px
}
.jyz-frame .jyz-center .jyz-fill .jyz-img {
    width: 50px;
    height: 50px;
    margin: 20px auto 0;
}
.jyz-frame .jyz-center .jyz-fill .jyz-img img {
    width: 50px;
}
.jyz-frame .jyz-center .jyz-fill .jyz-titles {
    text-align: center;
    font-size: 18px;
    color: #333;
}
.jyz-frame .jyz-center .jyz-fill .sub-title{
    text-align: center;
    font-size: 14px;
    color:#999
}
.jyz-frame .jyz-center .jyz-fill .jyz-button {
    width: 80px;
    height: 30px;
    border: 1px solid #dcdcdc;
    text-align: center;
    line-height: 30px;
    color: #666;
    background: #fff;
    cursor: pointer;
    margin: 20px auto 0;
    font-size: 12px;
}
/*确定与取消按钮展示*/
.jyz-frame .jyz-center .jyz-fill .jyz-button1 {
    width: 200px;
    height: 30px;
    margin: 17px auto 0;
    display: none;
}
.jyz-frame .jyz-center .jyz-fill .jyz-button1 .sure {
    width: 60px;
    height: 30px;
    background: #348fea;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
    float: left;
    margin-left: 28px;
    cursor: pointer;
}
.jyz-frame .jyz-center .jyz-fill .jyz-button1 .cancel {
    width: 60px;
    height: 30px;
    border: 1px solid #dcdcdc;
    color: #666;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
    float: left;
    margin-left: 24px;
    cursor: pointer;
}
/*遮罩层*/
.jyz-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 199;
    background-color: rgba(0, 0, 0, .3);
    opacity: 0.3;
    filter: alpha(opacity=30);
    display: none;
}